OR

Syntax: condition1 OR condition2 
Location: QL ROM

This combination operator combines two condition tests together and will have the value 0 if both condition1 and condition2 are false, or 1 if either condition1 or condition2 are true (or both are true).

Please note the difference between this and the bitwise OR operator: x||y, which compares x and y bit by bit.

Example:
PRINT 1 OR 0              Returns 1   

CROSS-REFERENCE:
AND, NOT and XOR are the other combination operators.
